home *** CD-ROM | disk | FTP | other *** search
/ Galleria D'arte: Manet / Manet.iso / Dati / Internet.dxr / 00015_go to internet.ls < prev    next >
Encoding:
Text File  |  2000-12-21  |  455 b   |  22 lines

  1. on mouseEnter me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(-1)
  7. end
  8.  
  9. on mouseUp me
  10.   global gWWW, gBrowser
  11.   if gBrowser contains ":\" then
  12.     gotoNetPage(gWWW, "_new")
  13.   else
  14.     checkbrowser()
  15.     if gBrowser contains ":\" then
  16.       gotoNetPage(gWWW, "_new")
  17.     else
  18.       openMessageWindow("E' necessario installare un Browser per collegarsi a Internet." & RETURN & "Esplorazione annullata.", "Galleria d'arte", "Warning")
  19.     end if
  20.   end if
  21. end
  22.